system date - перевод на немецкий
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

system date - перевод на немецкий

COMPUTER SYSTEM'S NOTION OF THE PASSING OF TIME
Date (computing); System clock; Time (computing); DATE (command); Date (command); System date; System Time; System clocks; DATE (DOS command); DATE (CP/M command)
  • date]]'' command

system date         
Systemdatum, das Datum das in der Computeruhr festgelegt ist
system time         
Systemzeit, die Zeit die in der Systemuhr festgelegt ist
expiration date         
  • tag]] sealing a bag of [[hot dog bun]]s displays a ''best before'' date of February 29.
  • UK]] displays a use by date of 26 December pressed into the foil to indicate that the food may spoil and be unsafe after that date.
PREVIOUSLY DETERMINED DATE AFTER WHICH SOMETHING SHOULD NO LONGER BE USED
Best before; Sell by date; Expiry date; Freshness date; Use by; Use by date; Expiry; Sell-by date; Best before date; Best by; Expiry Date; Sell by; Draft:Expiration date; Product expiration
Fälligkeitstermin; Verfallsdatum

Определение

sell-by date
¦ noun a date marked on a perishable product indicating the recommended time by which it should be sold.
?informal a time after which something or someone is no longer considered desirable or effective.

Википедия

System time

In computer science and computer programming, system time represents a computer system's notion of the passage of time. In this sense, time also includes the passing of days on the calendar.

System time is measured by a system clock, which is typically implemented as a simple count of the number of ticks that have transpired since some arbitrary starting date, called the epoch. For example, Unix and POSIX-compliant systems encode system time ("Unix time") as the number of seconds elapsed since the start of the Unix epoch at 1 January 1970 00:00:00 UT, with exceptions for leap seconds. Systems that implement the 32-bit and 64-bit versions of the Windows API, such as Windows 9x and Windows NT, provide the system time as both SYSTEMTIME, represented as a year/month/day/hour/minute/second/milliseconds value, and FILETIME, represented as a count of the number of 100-nanosecond ticks since 1 January 1601 00:00:00 UT as reckoned in the proleptic Gregorian calendar.

System time can be converted into calendar time, which is a form more suitable for human comprehension. For example, the Unix system time 1000000000 seconds since the beginning of the epoch translates into the calendar time 9 September 2001 01:46:40 UT. Library subroutines that handle such conversions may also deal with adjustments for time zones, daylight saving time (DST), leap seconds, and the user's locale settings. Library routines are also generally provided that convert calendar times into system times.